home *** CD-ROM | disk | FTP | other *** search
/ Aminet 34 / Aminet 34 (2000)(Schatztruhe)[!][Dec 1999].iso / Aminet / dev / c / GED_Scripts.lha / GED_Scripts / GED_Scripts.readme next >
Encoding:
Text File  |  1999-09-21  |  2.6 KB  |  90 lines

  1. Short:    Useful ARexx Scripts for C Programming
  2. Uploader: chris@mail.riednet.wh.tu-darmstadt.de (Christian Hattemer)
  3. Author:   chris@mail.riednet.wh.tu-darmstadt.de (Christian Hattemer)
  4. Type:     dev/c
  5. Requires: GoldED
  6. Kurz:     Nützliche ARexx Skripts für C Programmierung
  7.  
  8. This is the fourth Release.
  9.  
  10. Here are some useful ARexx scripts I wrote for GoldED 6, they should
  11. also work with GoldED 4 but I didn't test.
  12. Additionally modified versions of some other plugins are included.
  13.  
  14.  
  15. Installation:
  16.  
  17. All code has been compiled for 68020.
  18.  
  19. Put the scripts and the data file where you want and edit line 32
  20. of InsertMethod.rexx to contain the full path to the data file.
  21.  
  22. Put NewAutodoc and NewStruct in the GoldED scanner directory and add
  23. them to the list in the "Show Functions" window. Remove the old entries
  24. for these datatypes from the list.
  25.  
  26. Put NewMirror.api in the api directory and add it to the config.
  27.  
  28.  
  29. Archive Contents:
  30.  
  31. InsertClassname.rexx
  32.  
  33. This script assumes that you are writing a customclass and the
  34. filename is the name of your class. It takes the name, removes
  35. the .c or .h at the end and inserts it at cursor position.
  36.  
  37.  
  38. InsertProto.rexx
  39.  
  40. Inserts a method prototype with the classname already inserted and
  41. the cursor postioned so you can just type the methodname.
  42.  
  43.  
  44. InsertMethod.rexx
  45. InsertMethod.data
  46.  
  47. Inserts the data file which contains a template for an empty method.
  48. The classname is automatically inserted in the instance data line and
  49. the header line. The cursor is postioned so you can just type the methodname.
  50.  
  51.  
  52. Reference.rexx
  53.  
  54. Calls GoldED's XREF function with the word under the cursor.
  55. If nothing is found it tries again with an A appended to the end of
  56. the search word.
  57.  
  58. When using the NewAutodoc Scanner this is obsolete.
  59.  
  60.  
  61. NewAutodoc
  62.  
  63. Modified version of the autodocslow Scanner included with GoldED.
  64. Looks for formfeeds again to make it work with the MUI Autodocs.
  65. Additionally varargs stubs are only recognized when one of both names
  66. ends with 'A'. This avoids double entries which happened when viewing
  67. iffparse.doc.
  68.  
  69.  
  70. NewStruct
  71.  
  72. Modified version of the struct Scanner.
  73. It also recognizes the MUIP_xxx structures in mui.h, but only if you remove
  74. the space between the struct keyword and the label.
  75.  
  76. Source is included, if you find out how to fix the problem with the spaces
  77. please mail me.
  78.  
  79.  
  80. NewMirror.api
  81.  
  82. Modified version of the original mirror.api.
  83. Now also recognizes pairs of [ and ]. Also optimized for speed.
  84.  
  85. There's also NewMirror.api-Online, if you want to use it rename it to
  86. NewMirror.api first. It will also highlight braces as you type them.
  87.  
  88. mirro2.api has been removed from this archive since it's obsolete now.
  89.  
  90.